Version

CreateComparer<T>(Comparison<T>) Method

Creates an IComparer that wraps the specified comparison.
Syntax
'Declaration
 
Public Overloads Shared Function CreateComparer(Of T)( _
   ByVal comparison As Comparison(Of T) _
) As IComparer(Of T)
public static IComparer<T> CreateComparer<T>( 
   Comparison<T> comparison
)

Parameters

comparison
The comparison delegate to use when comparing elements.

Type Parameters

T
The type of object being compared

Return Value

A new IComparer<T> that uses the specified comparison to perform the compare.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also